home *** CD-ROM | disk | FTP | other *** search
- letter = _name.substr(0,1);
- number = _name.substr(1,3000);
- activeTimeOut = false;
- onEnterFrame = function()
- {
- if(activeTimeOut == true)
- {
- if(!_root.ball.hitTest(this))
- {
- activeTimeOut = false;
- }
- tele.gotoAndStop(2);
- }
- else
- {
- tele.gotoAndStop(1);
- if(this.hitTest(_root.ball))
- {
- var _loc3_ = new Sound(this);
- _loc3_.attachSound("PIPE");
- _loc3_.start(0,1);
- if(letter == "a")
- {
- _root.levels["b" + number].activeTimeOut = true;
- _root.ball._x = _root.levels["b" + number]._x;
- _root.ball._y = _root.levels["b" + number]._y;
- }
- else if(letter == "b")
- {
- _root.levels["a" + number].activeTimeOut = true;
- _root.ball._x = _root.levels["a" + number]._x;
- _root.ball._y = _root.levels["a" + number]._y;
- }
- }
- }
- };
-